home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-11 | 1.6 KB | 89 lines | [TEXT/MPS ] |
- ;
- ; File: Start.a
- ;
- ; Copyright: © 1984-1994 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Version: Universal Interfaces 2.0a3 ETO #16, MPW prerelease. Friday, November 11, 1994.
- ;
- ; Bugs?: If you find a problem with this file, send the file and version
- ; information (from above) and the problem description to:
- ;
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
-
- IF &TYPE('__START__') = 'UNDEFINED' THEN
- __START__ SET 1
-
-
- IF &TYPE('__TYPES__') = 'UNDEFINED' THEN
- include 'Types.a'
- ENDIF
- ; include 'ConditionalMacros.a' ;
- DefStartRec RECORD 0
- VariantLevel0Begin EQU *
- sdExtDevID ds.b 1
- sdPartition ds.b 1
- sdSlotNum ds.b 1
- sdSRsrcID ds.b 1
-
- ORG VariantLevel0Begin
- sdReserved1 ds.b 1
- sdReserved2 ds.b 1
- sdRefNum ds.w 1
-
- sizeof EQU 4
- ENDR
-
- DefVideoRec RECORD 0
- sdSlot ds.b 1
- sdsResource ds.b 1
- sizeof EQU 2
- ENDR
-
- DefOSRec RECORD 0
- sdReserved ds.b 1
- sdOSType ds.b 1
- sizeof EQU 2
- ENDR
-
- IF GENERATING68K THEN
- _GetDefaultStartup: OPWORD $A07D
- ELSE
- IMPORT GetDefaultStartup
- ENDIF
-
- IF GENERATING68K THEN
- _SetDefaultStartup: OPWORD $A07E
- ELSE
- IMPORT SetDefaultStartup
- ENDIF
-
- IF GENERATING68K THEN
- _GetVideoDefault: OPWORD $A080
- ELSE
- IMPORT GetVideoDefault
- ENDIF
-
- IF GENERATING68K THEN
- _SetVideoDefault: OPWORD $A081
- ELSE
- IMPORT SetVideoDefault
- ENDIF
-
- IF GENERATING68K THEN
- _GetOSDefault: OPWORD $A084
- ELSE
- IMPORT GetOSDefault
- ENDIF
-
- IF GENERATING68K THEN
- _SetOSDefault: OPWORD $A083
- ELSE
- IMPORT SetOSDefault
- ENDIF
-
- ENDIF ; __START__
-